home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / asl_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  1KB  |  52 lines

  1. #ifndef  CLIB_ASL_PROTOS_H
  2. #define  CLIB_ASL_PROTOS_H
  3.  
  4. /*
  5. **    $VER: asl_protos.h 38.3 (19.3.92)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20. #ifndef  LIBRARIES_ASL_H
  21. #include <libraries/asl.h>
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. /*--- functions in V36 or higher (Release 2.0) ---*/
  29.  
  30. /* OBSOLETE -- Please use the generic requester functions instead */
  31.  
  32. struct FileRequester *AllocFileRequest( void );
  33. void FreeFileRequest( struct FileRequester *fileReq );
  34. BOOL RequestFile( struct FileRequester *fileReq );
  35. APTR AllocAslRequest( unsigned long reqType, struct TagItem *tagList );
  36. APTR AllocAslRequestTags( unsigned long reqType, Tag Tag1, ... );
  37. void FreeAslRequest( APTR requester );
  38. BOOL AslRequest( APTR requester, struct TagItem *tagList );
  39. BOOL AslRequestTags( APTR requester, Tag Tag1, ... );
  40.  
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44.  
  45. #ifdef STORMPRAGMAS
  46. #ifndef _INCLUDE_PRAGMA_ASL_LIB_H
  47. #include <pragma/asl_lib.h>
  48. #endif
  49. #endif
  50.  
  51. #endif     /* CLIB_ASL_PROTOS_H */
  52.